chore: minimal Unity-Package project manifest (deps via package.json)#22
Merged
Conversation
The Unity-Package authoring project no longer declares explicit dependencies (mcp, test-framework, the feature package). Only com.unity.modules.* engine modules remain; everything else resolves transitively from the embedded package's package.json via the OpenUPM scoped registry. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
This PR simplifies the Unity authoring project’s Packages/manifest.json by removing explicit (non-engine-module) package dependencies so they resolve transitively from the embedded package’s package.json via the OpenUPM scoped registry, avoiding duplicated/pinned dependency declarations at the project level.
Changes:
- Removed direct dependency entries for
com.ivanmurzak.unity.mcp,com.unity.test-framework, andcom.unity.ide.visualstudiofrom the Unity project manifest. - Kept only
com.unity.modules.*engine module dependencies in the project manifest.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
1
to
4
| { | ||
| "dependencies": { | ||
| "com.ivanmurzak.unity.mcp": "0.79.1", | ||
| "com.unity.ide.visualstudio": "2.0.26", | ||
| "com.unity.test-framework": "1.1.33", | ||
| "com.unity.modules.assetbundle": "1.0.0", | ||
| "com.unity.modules.imageconversion": "1.0.0", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Make the Unity-Package authoring project carry no explicit dependencies — only
com.unity.modules.*engine modules remain. Everything else (com.ivanmurzak.unity.mcp, com.unity.test-framework, the feature package, IDE/template cruft) now resolves transitively from the embedded package's ownpackage.jsonvia the OpenUPM scoped registry. Mirrors the maintainer's Cinemachine change. Package source-of-truth = package.json; the project manifest no longer duplicates/pins deps.Note: only the project manifest changes (not the embedded package). Verified each package's asmdefs don't reference the removed entries.
🤖 Generated with Claude Code